home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16.lha / Python-1.6 / Lib / Python1.6 / sunaudio.py < prev    next >
Encoding:
Python Source  |  2000-02-04  |  1.1 KB  |  44 lines

  1. """Interpret sun audio headers."""
  2.  
  3. MAGIC = '.snd'
  4.  
  5. error = 'sunaudio sound header conversion error'
  6.  
  7.  
  8. def get_long_be(s):
  9.     """Convert a 4-char value to integer."""
  10.     return (ord(s[0])<<24) | (ord(s[1])<<16) | (ord(s[2])<<8) | ord(s[3])
  11.  
  12.  
  13. def gethdr(fp):
  14.     """Read a sound header from an open file."""
  15.     if fp.read(4) <> MAGIC:
  16.         raise error, 'gethdr: bad magic word'
  17.     hdr_size = get_long_be(fp.read(4))
  18.     data_size = get_long_be(fp.read(4))
  19.     encoding = get_long_be(fp.read(4))
  20.     sample_rate = get_long_be(fp.read(4))
  21.     channels = get_long_be(fp.read(4))
  22.     excess = hdr_size - 24
  23.     if excess < 0:
  24.         raise error, 'gethdr: bad hdr_size'
  25.     if excess > 0:
  26.         info = fp.read(excess)
  27.     else:
  28.         info = ''
  29.     return (data_size, encoding, sample_rate, channels, info)
  30.  
  31.  
  32. def printhdr(file):
  33.     """Read and print the sound header of a named file."""
  34.     hdr = gethdr(open(file, 'r'))
  35.     data_size, encoding, sample_rate, channels, info = hdr
  36.     while info[-1:] == '\0':
  37.         info = info[:-1]
  38.     print 'File name:  ', file
  39.     print 'Data size:  ', data_size
  40.     print 'Encoding:   ', encoding
  41.     print 'Sample rate:', sample_rate
  42.     print 'Channels:   ', channels
  43.     print 'Info:       ', `info`
  44.